Learn R Programming

bioRad (version 0.5.2)

[.ppi: Subset a plan position indicator (ppi)

Description

Select parameters (param) or derived quantities by index from a plan position indicator (ppi).

Usage

# S3 method for ppi
[(x, i)

Arguments

x

A ppi object.

i

Integer. Index/indices specifying which parameters (param) or derived quantities to extract.

Value

A ppi object containing a subset of parameters (param).

Examples

Run this code
# NOT RUN {
# Project the example scan as a ppi
ppi <- project_as_ppi(example_scan)

# This ppi contains 5 parameters (VRADH DBZH ZDR RHOHV PHIDP)
ppi

# Subset ppi to one containing only the first parameter (VRADH)
ppi[1]

# Subset ppi to one containing the first three parameters (VRADH, DBZH, ZDR)
ppi[1:3]

# Subset ppi to one without the first 2 parameters (ZDR RHOHV PHIDP)
ppi[-1:-2]
# }

Run the code above in your browser using DataLab